From Deprivation to Unemployment – A Child’s Journey
MISSION:
UNICEF, the United Nations agency for children, works to protect the rights of every child, especially the most disadvantaged and those hardest to reach. Across more than 190 countries and territories, we do whatever it takes to help children survive, thrive and fulfil their potential.
VISION:
All children have a right to survive, thrive and fulfill their potential – to the benefit of a better world.
1 Introduction
This dashboard examines how early-life deprivation impacts a child’s future, specifically their ability to find employment as teenagers. It visualizes the relationship between the percentage of children suffering from at least five deprivations and the youth unemployment rate (ages 15–19) across countries. By combining this with economic and social indicators—like GDP per capita, life expectancy, literacy rate, and access to sanitation—the dashboard explores how national conditions shape childhood outcomes and labor market prospects. The story highlights how deprivation isn’t just a temporary condition—it can have long-term consequences that echo into adolescence and adulthood.
This map illustrates the global distribution of children suffering from severe multidimensional poverty—defined as experiencing at least five deprivations. The highest rates are visibly concentrated in Sub-Saharan Africa, showing the darkest red shades, indicating the most severe levels of deprivation. Parts of South and Southeast Asia also report concerning rates.
These regions often align with lower GDP per capita, lower access to sanitation, and limited educational or healthcare infrastructure—a pattern supported by economic and social variables. Meanwhile, countries in Eastern Europe, South America, and Central Asia tend to show lower deprivation percentages, possibly reflecting more robust national investment in child-focused services.
This visualization highlights a clear geographic inequality in child well-being, underscoring the importance of targeted policy interventions and international support in the most affected regions.
3 How about GDP per capita and Life Expectancy to contrast the deprivation?
A clear inverse correlation is visible: countries with higher GDP per capita and higher life expectancy tend to have significantly lower levels of child deprivation. The steep decline of deprivation at around $4,000–$6,000 GDP per capita suggests a threshold effect—where economic growth begins to substantially reduce extreme poverty conditions for children.
Similarly, as life expectancy rises above 60 years, the deprivation rates tend to approach zero, highlighting the strong link between public health infrastructure and child well-being.
Some countries show positive movement—rising economically and improving child welfare—while others remain clustered in high-deprivation zones, signaling areas where more targeted policy and investment are urgently needed.
4 TOP 10 Countries affected vs Economic Stats
4.1 Data Visual
Code
import pandas as pdimport plotly.express as pxdeprivation = pd.read_csv("/content/drive/MyDrive/UNICEF/Csv Files/unicef_indicator_1.csv")metadata = pd.read_csv("/content/drive/MyDrive/UNICEF/Csv Files/unicef_metadata.csv")metadata.columns = metadata.columns.str.strip().str.lower()deprivation_filtered = deprivation[ (deprivation["sex"] =="Total") & (deprivation["indicator"] =="Percentage children suffering at least five deprivation. Homogeneous moderate standards")][["country", "obs_value"]].rename(columns={"obs_value": "pct_deprived"})metadata_selected = metadata[["country","gdp per capita (constant 2015 us$)","life expectancy at birth, total (years)","inflation, consumer prices (annual %)"]].rename(columns={"gdp per capita (constant 2015 us$)": "gdp_per_capita","life expectancy at birth, total (years)": "life_expectancy","inflation, consumer prices (annual %)": "inflation"})metadata_avg = metadata_selected.groupby("country").agg({"gdp_per_capita": "mean","life_expectancy": "mean","inflation": "mean"}).reset_index()merged = pd.merge(deprivation_filtered, metadata_avg, on="country", how="left")top10 = merged.sort_values("pct_deprived", ascending=False).head(10)albania = merged[merged["country"] =="Albania"]top11 = pd.concat([top10, albania], ignore_index=True) if"Albania"notin top10["country"].values else top10.copy()top11_melted = top11.melt( id_vars=["country"], value_vars=["pct_deprived", "inflation", "gdp_per_capita", "life_expectancy"], var_name="indicator", value_name="value")indicator_labels = {"pct_deprived": "% Children w/ ≥5 Deprivations","inflation": "Average Inflation (%)","gdp_per_capita": "Average GDP per Capita","life_expectancy": "Average Life Expectancy"}top11_melted["indicator"] = top11_melted["indicator"].map(indicator_labels)ordered_countries = top11.sort_values("pct_deprived", ascending=False)["country"].tolist()top11_melted["country"] = pd.Categorical(top11_melted["country"], categories=ordered_countries[::-1], ordered=True)top11_melted["hover_text"] = ("Country: "+ top11_melted["country"].astype(str) +"<br>Indicator: "+ top11_melted["indicator"].astype(str) +"<br>Value: "+ top11_melted["value"].round(2).astype(str))fig = px.bar( top11_melted, x="value", y="country", color="country", facet_col="indicator", orientation="h", color_discrete_sequence=px.colors.qualitative.Bold, custom_data=["hover_text"])fig.update_traces(hovertemplate="%{customdata[0]}<extra></extra>")fig.update_layout( height=700, font=dict(size=12), showlegend=False, title="Top 10 Countries with Highest Child Deprivation + Albania Benchmark (Faceted)", title_font_size=20, margin=dict(t=80))fig.for_each_annotation(lambda a: a.update(text=a.text.split("=")[-1]))fig.update_xaxes(matches=None)fig.write_html("/content/drive/MyDrive/UNICEF/Html files/top10_deprivation.html", include_plotlyjs="cdn")
4.2 Analysis
Most countries in this list—including Madagascar, Ethiopia, and Chad—present a consistent pattern of low GDP per capita and low life expectancy, confirming the link between economic underdevelopment and severe child deprivation.
However, Angola and the Democratic Republic of the Congo (DRC) deviate from this pattern. Despite relatively high GDP per capita values, they still rank among the worst for child deprivation.
This suggests that economic wealth alone is not enough—inequality, governance, or resource distribution issues may prevent national wealth from translating into improved child outcomes.
Albania is included for comparison: it shows negligible deprivation, yet has modest GDP and life expectancy levels.
Its presence highlights the role of effective public policies and service delivery, showing that economic strength is just one piece of the puzzle in reducing child poverty.
This dual scatterplot explores how basic living conditions correlate with the percentage of children suffering at least five deprivations.
On the left, we see a strong inverse relationship between access to sanitation and child deprivation.
Countries with lower sanitation access (under 40%) tend to have much higher deprivation rates, while those with access above 70% see near-zero deprivation.
This confirms that investing in water and sanitation infrastructure has a direct impact on improving children’s well-being.
On the right, the positive correlation with national stunting rates shows that malnutrition—especially chronic undernutrition—coexists closely with deprivation.
As stunting increases, so does the likelihood that children experience overlapping deprivations.
Together, these visuals reinforce the idea that child deprivation is multidimensional and often rooted in basic service gaps and health-related inequalities,
making sanitation and nutrition key policy levers to reduce long-term poverty.
6 Heatmap: Deprivation vs. Sanitation across the World
This map illustrates the relationship between access to sanitation (color) and child deprivation (bubble size) across countries. Darker blue tones represent higher sanitation coverage, while lighter green shades indicate lower access.
The bubble size reflects the percentage of children suffering at least five deprivations.
A striking regional trend appears in Sub-Saharan Africa, where countries with poor sanitation coverage also show larger deprivation bubbles—confirming that lack of access to basic services correlates strongly with multidimensional child poverty.
Countries in South and Central Asia and parts of Latin America also display moderate deprivation, though with relatively better sanitation coverage.
This visualization makes clear that investing in water and sanitation infrastructure is not only a health issue—it’s a powerful tool in reducing severe child deprivation and improving long-term development outcomes.
7 Deprivation and Child Unemployment, Coincidence or Correlation?
The trend shows a clear pattern: As child deprivation increases, so does the likelihood of adolescent unemployment. In countries where over 1% of children face five or more deprivations, youth unemployment often exceeds 30%, sometimes even reaching 70%.
The message is clear — early-life hardship can carry lasting effects, limiting young people’s chances of securing work later in life.
Investing in children’s well-being today is essential for building a stronger, more inclusive workforce tomorrow.
8 Conclusion
8.1 🌍 Final Message: Breaking the Cycle Starts with Us
This dashboard has revealed the powerful links between early childhood deprivation and long-term life outcomes.
From access to basic services like sanitation and education to broader national factors like GDP, life expectancy, and inflation — the conditions children grow up in shape their future opportunities.
Countries with higher deprivation consistently face greater challenges in youth employment, health, and development.
But these outcomes are not inevitable — they are the result of structural inequalities that can be addressed through informed policy, targeted investment, and collective action.
8.2 💙 Support the Mission: Help Children Thrive
Every child deserves a fair start in life, free from poverty, hunger, and exclusion. UNICEF works every day to break the cycle of deprivation by supporting education, healthcare, nutrition, and protection services for the most vulnerable children.
✅ Spread awareness.
✅ Support programs that invest in children.
✅ Be a voice for those who can’t speak for themselves.
8.2.1Because when children thrive, societies grow stronger, economies become fairer, and the future becomes brighter—for everyone.